@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Raleway:wght@400;500;600;700;800&display=swap');

:root {
    --baseFont: 'Raleway', sans-serif;
    --titleFont: 'Inter', sans-serif;
    --primaryColor: #5bc738;
    --secondaryColor1: #E0D15E;
    --secondaryColor2: #FFA733;
    --secondaryColor3: #14C0EF;
    --black: #000;
    --white: #fff;
    --lightBg: #e1e1e1;
    --primaryText: #337f13;
}

body {
    font-family: var(--baseFont);
    overflow-x: hidden;
    font-size: 18px;
    font-weight: 500;
}

img {
    max-width: 100%;
}

a,
.btn {
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

a,
a:hover {
    text-decoration: none;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--titleFont);
    font-weight: 700;
}

.btn {
    --borderWd: 3px;
    font-family: var(--titleFont);
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 40px;
    border: var(--borderWd) solid var(--white);
}

.btn:hover {
    border: var(--borderWd) solid var(--white);
}

.btnPrimary {
    background: #38b3e4;
    background: -moz-linear-gradient(left, #38b3e4 0%, #435da9 50%, #38b3e4 100%);
    background: -webkit-linear-gradient(left, #38b3e4 0%, #435da9 50%, #38b3e4 100%);
    background: linear-gradient(to right, #38b3e4 0%, #435da9 50%, #38b3e4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#38b3e4', endColorstr='#38b3e4', GradientType=1);
    -webkit-background-size: 200% auto;
    background-size: 200% auto;
    background-position: left top;
    color: var(--white);
    -webkit-transition: background-position 500ms ease-in-out 0s;
    -o-transition: background-position 500ms ease-in-out 0s;
    transition: background-position 500ms ease-in-out 0s;
}

.btnPrimary:hover {
    color: var(--white);
    background-position: right top;
}

.arrowBtn>span {
    display: inline-block;
    vertical-align: middle;
}

.arrowBtn>span>img {
    width: 18px;
    display: block;
}

.arrowBtn>span+span {
    margin-left: 5px;
}

.primaryColor {
    color: var(--primaryColor);
}

.primaryText {
    color: var(--primaryText);
}




/* toggle */
.toggle {
    width: 22px;
    height: 18px;
    position: relative;
    margin-left: auto;
    cursor: pointer;
    display: block;
    z-index: 10;
}

.bar {
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: #00B900;
    z-index: 1;
    -webkit-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    top: 7px;
}

.bar:nth-child(1) {
    top: 0px;
}

.bar:nth-child(3) {
    top: 14px;
    right: 0;
}

.actNav .bar:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.actNav .bar:nth-child(2) {
    opacity: 0;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
}

.actNav .bar:nth-child(3) {
    top: 8px;
    width: 100%;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}



.homeBannerSection {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background-image: url('../images/banner-bg.png');
    background-repeat: no-repeat;
    /* -webkit-background-size: cover;
  background-size: cover; */
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    background-position: right center;
}

.bannerSection {
    width: 100%;
}

.bannerContentCol {
    text-align: center;
    padding: 60px 0;
    max-width: 560px;
}

.tagLine {
    display: block;
    font-weight: 500;
    font-family: var(--titleFont);
}

.bannerLogoCol {
    padding-bottom: 60px;
}

.bannerContent {
    font-family: var(--titleFont);
    color: #919db5;
}

.bannerContent h1 {
    font-size: 32px;
    color: var(--primaryColor);
}

.bannerContent p {
    font-weight: 500;
    font-size: 30px;
}

.bannerLogoCol a {
    display: inline-block;
}

.bannerLogoCol .tagLine {
    padding-top: 10px;
    font-size: 22px;
}

.bannerLogoCol img {
    width: 450px;
}

.bannerContent .btn.btnPrimary {
    box-shadow: 3px 4px 2px rgba(0, 0, 0, 0.6);
}

.bannerContent p {
    font-weight: 500;
    font-size: 30px;
}

.sectionSpace {
    padding: 100px 0;
}

.bgS1 {
    background-color: var(--secondaryColor1);
}

.cs1IconCol {
    width: 160px;
}

.lgTitle {
    font-size: 32px;
}

.mdTitle {
    font-size: 28px;
}

.cs1Content {
    max-width: 410px;
}

.cardStyle1 {
    font-family: var(--titleFont);
}

.cs1Content>p+.btn {
    margin-top: 10px;
}

a.linkStyle {
    text-decoration: underline;
    color: var(--primaryText);
}

.featuredProjectCol {
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
    font-weight: 500;
}

.fpImgCol {
    border: 2px solid #a1a3a4;
    margin: 20px 0;
    width: 100%;
    height: 269px;
}

.fpImgCol>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.getInTouchCol {
    max-width: 480px;
}

.fpLeftBorder {
    border-left: 1px solid;
}


/* footer */
.footerTopCol {
    background-color: var(--secondaryColor2);
    padding: 5px 0;
    color: var(--black);
}

.followCol {
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px);
}

.socialLinks {
    padding-bottom: 10px;
}

.socialLinks>li>a {
    display: block;
}

.socialLinks img {
    width: 45px;
}

.socialLinks>li+li {
    padding-left: 4px;
}

.socialLinks>li,
.footerLinks>li {
    display: inline-block;
    vertical-align: middle;
}

.footerLinks {
    text-align: center;
}

.footerLinks>li {
    padding: 4px 6px;
    position: relative;
}

.footerLinks>li+li::before {
    content: "|";
    position: absolute;
    left: -3px;
}

.footerLinks a {
    color: inherit;
}

.footerTopCol a:hover {
    opacity: 0.8;
}

.copyrightCol {
    text-align: center;
    font-size: 14px;
    padding: 20px 0 30px;
    background-color: var(--lightBg);
    color: #231f20;
}



/* interiorpage style start */
.headerTopCol {
    padding: 20px 0;
    font-size: 22px;
    font-family: var(--titleFont);
}

.logoCol img {
    width: 180px;
}

.logoCol {
    width: 250px;
}

.hPhoneNumber {
    width: 315px;
}

.hPhoneNumber,
.hTagLine {
    text-align: center;
}

.headerMdlCol {
    background-color: var(--secondaryColor1);
    /* height: 60px; */
    background-image: url('../images/banner-shapes.svg');
    background-repeat: no-repeat;
    background-position: center top 20%;
    background-size: auto 180%;
    padding: 8px 0;
}

.headerBtnCol .btn {
    font-size: 16px;
    padding: 8px 20px;
    border-width: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.headerBtnCol .btn.arrowBtn>span>img {
    width: 14px;
}

.menuInnerCol {
    text-align: center;
}

.menuInnerCol>ul>li {
    display: inline-block;
}

.menuColMain {
    background-color: var(--secondaryColor2);
}

.menuColMain a {
    display: block;
    color: var(--black);
    padding: 12px;
    position: relative;
    font-size: 16px;
}

.menuColMain a::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 8px;
    border-bottom: 2px solid;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.menuColMain a:hover::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.leftSidebar {
    width: 280px;
    text-align: center;
    -webkit-transform: translateY(-130px);
    -ms-transform: translateY(-130px);
    transform: translateY(-130px);
    padding-bottom: 30px;
}

.lsImgCol img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border: 2px solid var(--white);
    border-radius: 50%;
}

.lsImgCol+.lsContentCol {
    padding-top: 30px;
}

.pageRightCol {
    padding-left: 30px;
    min-height: 100%;
    border-left: 2px solid lightgrey;
}

.cs2ImgCol {
    border: 1px solid darkgray;
}

.cs2ImgCol+.cs2ContentCol {
    margin-top: 20px;
}

.cs2ContentCol h4 {
    font-size: 22px;
}

.cs2ContentCol p a {
    color: var(--primaryText);
    text-decoration: underline;
}

/* interiorpage style start */


/* contact page style start */

.contactForm {
    max-width: 620px;
    padding-top: 30px;
}

.lblStyle {
    width: 250px;
    font-family: var(--titleFont);
    font-weight: 600;
    font-size: 20px;
}

.formStyle {
    margin-bottom: 20px;
}

.formStyle .form-control:focus,
.formStyle .form-select:focus {
    border-color: #dee2e6;
    outline: 0;
    box-shadow: none;
}

.formStyle .form-control,
.formStyle .form-select {
    height: 45px;
    font-family: var(--titleFont);
    font-weight: 500;
    padding: 10px 15px;
    border-color: #d3d3d3;
}

.formStyle textarea.form-control {
    min-height: 120px;
    resize: none;
}

.required {
    color: #ff0000;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--white);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--white);
}

.codeStyle {
    font-size: 26px;
    color: black;
    opacity: 0.2;
}

.codeText {
    text-align: left;
    padding-bottom: 5px;
}

.codeText>a {
    font-family: var(--titleFont);
    font-weight: 600;
    color: var(--black);
    font-size: 16px;
}

.submitBtn {
    text-align: right;
}

.message_box {
    text-align: right;
    font-size: 14px;
}

.checkInputStyle .form-group {
    display: block;
}

.checkInputStyle .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.checkInputStyle .form-group label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    font-size: 14px;
}

.checkInputStyle .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: #ffff;
    border: 1px solid #d3d3d3;
    padding: 2px;
    position: absolute;
    cursor: pointer;
    width: 16px;
    height: 16px;
    left: 0;
    top: 2px;
}

.checkInputStyle .form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid #000000;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.xlgTitle {
    font-size: 48px;
}

.blogCommingSoon .lsImgCol {
    margin-top: 60px;
}


/* contact page style end */


/* service page style start */

.servicesContent h4.mdTitle {
    padding-top: 20px;
}

.servicesContent p>a {
    color: #337f13;
    text-decoration: underline;
    font-weight: 600;
}

.linkCol {
    color: var(--black);
}

/* service page style end */


/* web-digital page style start */

.cardStyle2.webLeftImg {
    padding-right: 30px;
}

.cardStyle2.webRigtImg {
    padding-left: 30px;
}

.webImgStyle .cs2ImgCol {
    border: 3px solid darkgray;
    width: 100%;
    height: 280px;
}

.webImgStyle .cs2ImgCol>img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.webDigital .cardStyle2 {
    margin-bottom: 30px;
}

/* web-digital page style end */

.lsContentCol2 {
    margin-top: 100%;
}

.blogCommingSoon p>a {
    color: #000;
}


.message_box2 {
    text-align: right;
    font-size: 13px;
    letter-spacing: 1px;
}


@media (max-width:1499px) {
    .homeBannerSection {
        min-height: 85vh;
    }
}

@media (max-width:1399px) {
    body {
        font-size: 16px;
    }

    .bannerLogoCol img {
        width: 350px;
    }

    .bannerContent h1 {
        font-size: 28px;
    }

    .bannerContent p {
        font-size: 24px;
    }

    .bannerLogoCol .tagLine {
        font-size: 18px;
    }

    .bannerLogoCol {
        padding-bottom: 40px;
    }

    .sectionSpace {
        padding: 80px 0;
    }

    .mdTitle {
        font-size: 24px;
    }

    .featuredProjectCol {
        max-width: 350px;
    }

    .cs1IconCol {
        width: 130px;
    }

    .btn {
        font-size: 18px;
    }

    .arrowBtn>span>img {
        width: 14px;
    }

    .cs1Content {
        max-width: 360px;
    }

    /*  */
    .lgTitle {
        font-size: 28px;
    }

    .lsImgCol img {
        width: 150px;
        height: 150px;
    }

    .leftSidebar {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    .homeBannerSection {
        min-height: 78vh;
    }

    .webImgStyle .cs2ImgCol {
        height: 220px;
    }
}

@media (max-width:1199px) {
    .bannerContentCol {
        padding: 40px 0;
        max-width: 480px;
    }

    .homeBannerSection {
        background-position: right -150px center;
    }

    .bannerContent h1 {
        font-size: 26px;
    }

    .bannerContent p {
        font-size: 20px;
    }

    .bannerLogoCol .tagLine {
        font-size: 16px;
    }

    .getInTouchCol {
        max-width: 370px;
    }

    .copyrightCol {
        padding: 20px 0;
    }

    /*  */
    .leftSidebar {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        width: 250px;
    }

    .headerTopCol {
        font-size: 18px;
    }

    .cs2ContentCol h4 {
        font-size: 20px;
    }

    .cardStyle2.webLeftImg {
        padding-right: 0;
    }

    .cardStyle2.webRigtImg {
        padding-left: 0;
    }

    .webDigital .cardStyle2 {
        margin-bottom: 15px;
    }

    .lsContentCol2 {
        margin-top: 70%;
    }

    .fpImgCol {
        height: 220px;
    }
}

@media (max-width:991px) {
    .bannerLogoCol img {
        width: 240px;
    }

    .bannerLogoCol {
        padding-bottom: 25px;
    }

    .bannerContent h1 {
        font-size: 24px;
    }

    .bannerContent p {
        font-size: 18px;
    }

    .homeBannerSection {
        position: relative;
        padding: 40px 0;
        min-height: 100vh;
    }

    .bannerContentCol {
        padding: 50px 20px;
        max-width: 100%;
        background-color: rgba(255, 255, 255, 0.85);
        border-radius: 15px;
    }

    .cs1Content,
    .getInTouchCol {
        max-width: 100%;
    }

    .getInTouchCol {
        text-align: center;
    }

    .fpLeftBorder {
        border-left: none;
    }

    .btn {
        font-size: 16px;
    }

    .arrowBtn>span>img {
        width: 12px;
    }

    .footerTopCol {
        text-align: center;
        padding: 30px 0 35px;
    }

    .followCol {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0px);
    }

    .socialLinks {
        padding: 15px 0 20px;
    }

    .footerLinks {
        padding-bottom: 10px;
    }

    .socialLinks img {
        width: 36px;
    }

    .socialLinks>li+li {
        padding-left: 10px;
    }

    .cs1Content>p+.btn {
        margin-top: 0;
    }

    /*  */
    .menuBackDrop {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: all 800ms ease-in-out 0s;
        -o-transition: all 800ms ease-in-out 0s;
        transition: all 800ms ease-in-out 0s;
        z-index: 9;
    }

    .actNav .menuBackDrop {
        opacity: 1;
        visibility: visible;
        pointer-events: initial;
    }

    .menuColMain {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 270px;
        z-index: 99;
        -webkit-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .actNav .menuColMain {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .menuInnerCol {
        text-align: left;
        padding: 20px 0;
    }

    .menuInnerCol>ul>li {
        display: block;
    }

    .menuColMain a::before {
        display: none;
    }

    .menuColMain a {
        padding: 8px;
        font-weight: 600;
    }

    .leftSidebar {
        width: 100%;
    }

    .pageRightCol {
        padding: 30px 0 0;
        border-left: none;
        border-top: 2px solid lightgrey;
    }

    .cardStyle2 {
        max-width: 470px;
        margin: 0 auto;
        padding: 10px 0;
    }

    .actNav .bar {
        background-color: var(--white);
    }

    .headerBtnCol .btn {
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }

    .webDigital .cardStyle2 {
        margin-bottom: 0;
    }

    .lsContentCol2 {
        margin-top: 50px;
    }

    .webImgStyle .cs2ImgCol {
        height: 260px;
    }
}

@media (max-width:767px) {
    .lblStyle {
        width: 100%;
        display: block;
        text-align: left;
        font-size: 14px;
    }

    .codeText {
        text-align: left;
        padding: 10px 0 0;
    }

    .formStyle {
        margin-bottom: 15px;
    }

    .contactForm {
        max-width: 100%;
        padding-top: 20px;
    }

    .headerMdlCol {
        background-size: auto 120%;
    }

    .sectionSpace {
        padding: 60px 0;
    }
}

@media (max-width:575px) {
    .homeBannerSection {
        background-position: right -220px center;
    }

    .cardStyle1 {
        text-align: center;
    }

    .cs1IconCol {
        width: 100px;
        margin: 0 auto;
    }

    .cs1Content {
        padding-top: 10px;
    }

    .cs1Content>p+.btn {
        margin-top: 10px;
    }

    .mdTitle {
        font-size: 20px;
    }

    .bannerContent p {
        font-size: 16px;
    }

    .bannerContent h1 {
        font-size: 20px;
    }

    .bannerLogoCol .tagLine {
        font-size: 12px;
    }

    .btn {
        padding: 8px 30px;
    }

    .footerLinks a {
        font-size: 14px;
    }

    .leftSidebar {
        padding-bottom: 0;
    }

    .xlgTitle {
        font-size: 42px;
    }

    .blogCommingSoon .lsImgCol {
        margin-top: 30px;
    }

    .headerMdlCol {
        background-size: auto 100%;
    }
}

@media (max-width:475px) {
    .webImgStyle .cs2ImgCol {
        height: 220px;
    }

    .cs2ImgCol+.cs2ContentCol {
        margin-top: 15px;
    }

    body {
        font-size: 14px;
    }

    .headerMdlCol {
        background-size: auto 85%;
    }
}

@media (max-width:374px) {
    .bannerContentCol {
        padding: 30px 15px 40px;
        border-radius: 5px;
    }

    .bannerLogoCol img {
        width: 220px;
    }

    .sectionSpace {
        padding: 40px 0;
    }

    .footerLinks>li {
        padding: 2px 4px;
    }

    .footerLinks a {
        font-size: 13px;
    }

    .socialLinks {
        padding: 10px 0 15px;
    }

    .footerLinks {
        padding-bottom: 5px;
    }

    .headerBtnCol .btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    .headerBtnCol .btn.arrowBtn>span>img {
        width: 12px;
    }

    .logoCol img {
        width: 150px;
    }

    .xlgTitle {
        font-size: 36px;
    }

    .headerMdlCol {
        background-size: auto 80%;
    }
}

#captcha{
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-style: italic;
    font-weight: bold;
    font-size: 2em;
    padding: 3px;
    border-radius: 5px;
    text-decoration: line-through;
    color: #a0a0a0;
    background-color: var(--black);
    opacity: 100;
}